home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / misc / mperf10.readme < prev    next >
Text File  |  1993-01-30  |  828b  |  21 lines

  1. Short: sorts exec-memorylists
  2.  
  3.                               MemoryPerform V1.000
  4.  
  5.         WHAT IS IT ?
  6.  
  7.      MemoryPerform  is  a  small  tool  that  tries  to   reduce   the
  8.      fragmentation of your memory and to speed up the  memory-handling
  9.      in general.
  10.  
  11.      How does  this  work?  First  of  all,  MemoryPerform  scans  the
  12.      MemoryChunkLists of Exec and deletes all entries that are smaller
  13.      than 16 bytes. (After that, you might have about 100 Hunks  less,
  14.      which will speed up AllocMem()!)
  15.  
  16.      Next, MemoryPerform moves the smallest chunks to the top  of  the
  17.      list. The advantage is that now AllocMem() - which simply browses
  18.      though the list and takes the first memblock that  is  larger  or
  19.      equal the requested size - won't split up a 500k-block when  only
  20.      200 bytes are needed.
  21.